home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / planetkit / amigakit / amtlk155.lha / AmiTALK / DebugInformation < prev    next >
Text File  |  1995-06-07  |  3KB  |  87 lines

  1. failat 50
  2.  
  3. echo "*e[H*e[JAmiTALK Debugging Information Script."
  4.  
  5. echo "*nWARNING:  This script will list files in your WBStartup drawer"
  6. echo "and copy your user-startup and startnet script to ram:AmiTALK.debug"
  7. echo "Please inspect this file and * out any passwords or other"
  8. echo "information you do not want seen before mailing it to me."
  9. echo "*nNOTE:  This script will not work with AS225 or its derivatives."
  10. echo "(Fortunately, no one using AS225 has reported the above bug yet.)"
  11.  
  12. ask "*nAre you ready to proceed?"
  13. if not warn
  14.     echo "*nOkay, well, please run me again when you are."
  15.     skip END
  16. endif
  17.  
  18. echo "*nBeginning the collection of debugging information."
  19.  
  20. echo >ram:AmiTALK.debug "To: gunnbr@cs.rose-hulman.edu"
  21. echo >>ram:AmiTALK.debug "Subject: AmiTALK debug script"
  22.  
  23. echo >>ram:AmiTALK.debug "*nAmiTALK debug script.*nRun on " NOLINE
  24. date >>ram:AmiTALK.debug
  25. echo >>ram:AmiTALK.debug "Run by $USER"
  26.  
  27. echo >>ram:AmiTALK.debug "*nAmiTALK version:"
  28. version >>ram:AmiTALK.debug amitcp:bin/talk
  29.  
  30. echo >>ram:AmiTALK.debug "*nAmiTALKd version:"
  31. version >>ram:AmiTALK.debug amitcp:serv/talkd
  32.  
  33. echo >>ram:AmiTALK.debug "*nAmiTCP version:"
  34. version >>ram:AmiTALK.debug amitcp:amitcp
  35.  
  36. echo >>ram:AmiTALK.debug "*nHostname:  $hostname*nDomain:  $domain"
  37.  
  38. echo >>ram:AmiTALK.debug "*nConfiguration:"
  39. sys:tools/showconfig >>ram:AmiTALK.debug
  40.  
  41. echo >>ram:AmiTALK.debug "*nPath:"
  42. path >>ram:AmiTALK.debug
  43.  
  44. echo >>ram:AmiTALK.debug "*n======= status ========="
  45. status >>ram:AmiTALK.debug
  46.  
  47. echo >>ram:AmiTALK.debug "*n======= talkrequest.rexx ========"
  48. type >>ram:AmiTALK.debug amitcp:bin/talkrequest.rexx
  49.  
  50. echo >>ram:AmiTALK.debug "*n======= inetd.conf ======="
  51. type >>ram:AmiTALK.debug amitcp:db/inetd.conf
  52.  
  53. echo >>ram:AmiTALK.debug "*n======= startnet ======="
  54. type >>ram:AmiTALK.debug amitcp:bin/startnet
  55.  
  56. echo >>ram:AmiTALK.debug "*n======= netdb ========="
  57. type >>ram:AmiTALK.debug amitcp:db/netdb
  58.  
  59. echo >>ram:AmiTALK.debug "*n======= netdb-myhost ========"
  60. type >>ram:AmiTALK.debug amitcp:db/netdb-myhost
  61.  
  62. echo >>ram:AmiTALK.debug "*n======= interfaces ========="
  63. type >>ram:AmiTALK.debug amitcp:db/interfaces
  64.  
  65. echo >>ram:AmiTALK.debug "*n======= env:sana2 =========="
  66. type >>ram:AmiTALK.debug env:sana2/#? opt b
  67.  
  68. echo >>ram:AmiTALK.debug "*n======= user-startup ========"
  69. type >>ram:AmiTALK.debug s:user-startup
  70.  
  71. echo >>ram:AmiTALK.debug "*n======= WBStartup ========"
  72. list >>ram:AmiTALK.debug sys:wbstartup
  73.  
  74. echo >>ram:AmiTALK.debug "*n======= ENV: ========="
  75. list >>ram:AmiTALK.debug env: all
  76.  
  77. echo "*nCollection of information completed."
  78. echo "Please mail the file ram:AmiTALK.debug to:"
  79. echo "*n        gunnbr@cs.rose-hulman.edu"
  80. echo "*nMIME mail is preferred, but send it as plain text"
  81. echo "if MIME is not possible."
  82. echo "*nFeel free to include any other information you"
  83. echo "think is necessary."
  84. echo "*nThank you!*n"
  85.  
  86. lab END
  87.